home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / IndexingKit / ToDoList / QueryFieldEditor.h < prev    next >
Encoding:
Text File  |  1993-02-16  |  546 b   |  22 lines

  1. /*
  2. QueryFieldEditor.h - Copyright (c) 1992 NeXT Computer, Inc.
  3.  
  4. You may freely copy, distribute and reuse the code in this example.
  5. NeXT Computer, Inc. disclaims any warranty of any kind, expressed or implied, 
  6. as to its fitness for any particular use.
  7. */
  8.  
  9. #import    <appkit/appkit.h>
  10. #import    <btree/protocols.h>
  11.  
  12. @interface QueryFieldEditor: Text
  13. {
  14.     id <IXCursorPositioning>    cursor;
  15. }
  16.  
  17. - setCursor:(id <IXCursorPositioning>)aCursor;
  18. - initFrame:(NXRect *)frameRect text:(char *)theText alignment:(int)mode;
  19. - keyDown:(NXEvent *)theEvent;
  20.  
  21. @end
  22.